home *** CD-ROM | disk | FTP | other *** search
/ Wild Blue Yonder 1: 50 Years of Gs & Jets / Wild Blue Yonder - Episode 1 - 50 Years of Gs and Jets (Digital Ranch) (Spectrum Holobyte)(1-107-40-101)(1994).iso / control / panel.dir / 00725_Script_725 < prev    next >
Text File  |  1994-08-29  |  628b  |  26 lines

  1. on turnForwardPage
  2.   
  3.   global forwardPage, forwardPageNeg, forwardPagePos 
  4.   
  5.   if rollOver( forwardPage ) then
  6.     
  7.     set the castNum of sprite forwardPage = forwardPageNeg
  8.     updateStage
  9.     
  10.     repeat while the stillDown
  11.       if not rollOver( forwardPage ) then
  12.         set the castNum of sprite forwardPage = forwardPagePos
  13.         updateStage      
  14.       else nothing
  15.     end repeat
  16.     
  17.     if rollOver( forwardPage ) then
  18.       set the castNum of sprite forwardPage = forwardPagePos
  19.       updateStage
  20.       go to frame (the frame + 1)
  21.     else nothing
  22.     
  23.   end if
  24.   
  25. end turnForwardPage
  26.